bAnd1t LS Weather  Flybritn/ibniaffa/VicDaMonki



"bAndit LS Weather" widget is a User wall widget.  You need to install LockScreen Clock Hide &
Wallpaper JPEGifier  free on Cydia  then you can simpy set any Lock Screen from 
Settings app / Wallpaper & respring device.





*******************************************************************************************************

   

 *Set weather location
use ifile or ssh to var/stash/themes/bAnd1t LS Weather/ open LockBackground.html
look for this line

var locale = "38301" //e.g.   <---change 38301 to your zipcode or weather code




to get your weather code visit http://www.edg3.co.uk/snippets/weather-location-codes/


******************************************************************************************************

Change the clock to 24 hour format.

go into ( Aspire iPad AnyWall LS Weather ) wich ever one you using, open up the html file scroll down untill you see

function updateClock ( )

then look for this

var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";


currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;


currentHours = ( currentHours == 0 ) ? 12 : currentHours;

you want to change it so it looks like this below

var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";


currentHours = ( currentHours > 24 ) ? currentHours - 12 : currentHours;


currentHours = ( currentHours == 0 ) ? 12 : currentHours;